home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / vol16n13.zip / OPENTR.ZIP / OT_SRC.ZIP / FILTDLG.H < prev    next >
C/C++ Source or Header  |  1997-05-26  |  1KB  |  61 lines

  1. // FiltDlg.h : header file
  2. //
  3. // OpenTrap Version 1.00 by Gregory A. Wolking
  4. // Copyright ⌐ 1997 Ziff-Davis Publishing
  5. // First published in PC Magazine, US Edition, July 1997.
  6. /////////////////////////////////////////////////////////////////////////////
  7. // CFilterDlg dialog
  8.  
  9. class CFilterDlg : public CDialog
  10. {
  11. // Construction
  12. public:
  13.     CFilterDlg(CWnd* pParent = NULL);   // standard constructor
  14.  
  15. // Dialog Data
  16.     //{{AFX_DATA(CFilterDlg)
  17.     enum { IDD = IDD_FILTER_DIALOG };
  18.     CButton    m_chkModuleName;
  19.     CButton    m_chkExt;
  20.     CButton    m_chkBaseName;
  21.     CEdit    m_txtBaseName;
  22.     CEdit    m_txtModuleName;
  23.     CEdit    m_txtExt;
  24.     int        m_intShow;
  25.     CString    m_strBaseName;
  26.     CString    m_strExt;
  27.     CString    m_strModuleName;
  28.     BOOL    m_bBaseName;
  29.     BOOL    m_bErrorsOnly;
  30.     BOOL    m_bExt;
  31.     BOOL    m_bModuleName;
  32.     BOOL    m_bSaveSettings;
  33.     //}}AFX_DATA
  34.  
  35.  
  36. // Overrides
  37.     // ClassWizard generated virtual function overrides
  38.     //{{AFX_VIRTUAL(CFilterDlg)
  39.     protected:
  40.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  41.     //}}AFX_VIRTUAL
  42.  
  43. // Implementation
  44. protected:
  45.  
  46.     // Generated message map functions
  47.     //{{AFX_MSG(CFilterDlg)
  48.     afx_msg void OnchkBaseName();
  49.     afx_msg void OnchkExt();
  50.     afx_msg void OnchkModuleName();
  51.     afx_msg void OncmdReset();
  52.     virtual BOOL OnInitDialog();
  53.     virtual void OnOK();
  54.     afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  55.     //}}AFX_MSG
  56.     afx_msg void OnContextHelp();
  57.     DECLARE_MESSAGE_MAP()
  58. private:
  59.     UINT m_intHelpContext;
  60. };
  61.